home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / debugger / ddd-1.000 / ddd-1 / ddd-1.4b / libiberty / vfork.c < prev    next >
Encoding:
Text File  |  1996-01-12  |  157 b   |  9 lines

  1. /* Emulate vfork using just plain fork, for systems without a real vfork.
  2.    This function is in the public domain. */
  3.  
  4. int
  5. vfork ()
  6. {
  7.   return (fork ());
  8. }
  9.